home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Plug-In Power Pack for Netscape Communicator
/
Plug-In Power Pack for Netscape Communicator.iso
/
plugins
/
dataviews
/
dvtools
/
demos
/
cpitdemo
/
cpit_dyn.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-08
|
986b
|
42 lines
#ifndef lint
static char SccsId[]= "@(#)cpit_dyn.c V1.4 3/15/95";
#endif
/*------------------------------------------------------------------
| file name -- cpit_dyn.c
|
| functions Description
| --------- -----------
| HandleDynamics Updates the data and the display
|
|-----------------------------------------------------------------*/
#include "std.h"
#include "dvstd.h"
#include "dvtools.h"
#include "VOstd.h"
#include "Tfundecl.h"
#include "cpit_vars.h"
#include "cpit_fundecl.h"
/*-----------------------------------------------------------------
|
| HandleDynamics
| Performs the functions needed to update the display to
| reflect the latest data.
*/
void HandleDynamics
V_P_ ((void))
{
/* Update the Data */
(VOID) TviReadData (ActiveView);
/* Update the dynamic objects in the MAIN WINDOW */
(VOID) TscSetCurrentScreen (MainScreen);
(VOID) TdpDrawNext (ActiveDrawport);
}